Conversation
Contributor
Author
Status UpdatePython 3.14 was released on October 7, 2025. CI tests are currently failing because h5py doesn't have Python 3.14 wheels yet. Current Situation
Next StepsThis PR will remain in draft status until h5py 3.15 is released on PyPI. Once that happens, CI should pass and the PR can be marked ready for review. Tracking: h5py/h5py#2713 |
- Add Python 3.14 to classifiers and CI test matrix (3.13 + 3.14) - Set python_requires >= 3.11 - Add .python-version for uv default - Add allow-prereleases to setup-python for 3.14 support - Add changelog entry Fixes #178 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6386c5c to
1456347
Compare
- Use StrEnum instead of (str, Enum) pattern (required by ruff UP042) - Keep requires-python >= 3.13 since dependencies require it - Keep ruff target-version at py313 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The uv sync step was redundant with uv pip install --system and caused failures because it tried to build pydantic-core from source for 3.14 (PyO3 0.24.1 doesn't support 3.14 yet, but pre-built wheels do exist). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Python 3.14 changed the ValueError message for invalid days from "day is out of range for month" to "day N must be in range 1..M for month ...". Updated the check to handle both formats. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Prevents 3.13 job from being cancelled if 3.14 fails (or vice versa). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
allow-prereleases: truetosetup-pythonaction for 3.14 support.python-versionfile for uv defaultStrEnuminstead of(str, Enum))uv syncCI step that failed building from source on 3.14ValueErrormessage formatfail-fast: falseto CI matrix for better visibilityContext
policyengine-core recently merged Python 3.14 support, and PyTables 3.11.0 now has wheels for 3.14. This PR brings policyengine.py in line.
Fixes #178
Test plan